home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1996 September / JCSM Shareware Collection (JCS Distribution) (September 1996).ISO / bother__ / cenvid.zip / README.DOC < prev   
Text File  |  1995-04-01  |  27KB  |  530 lines

  1.                    CEnvi Unregistered Shareware - ReadMe
  2.                    
  3.                      CEnvi unregistered version 2.00
  4.                              29 March 1995
  5.  
  6.                  Copyright 1993, Nombas, All Rights Reserved.
  7.           Published by Nombas, 64 Salem Street, MEDFORD MA 02155 USA
  8.           
  9.                           VOICE (617) 391-6595
  10.                           BBS   (617) 391-3718
  11.                           FAX   (617) 391-3842
  12.  
  13.          Thank you for trying this shareware version of CEnvi from Nombas.
  14.  
  15.                           _______
  16.                      ____|__     |                (R)
  17.                   --|       |    |-------------------
  18.                     |   ____|__  |  Association of
  19.                     |  |       |_|  Shareware
  20.                     |__|   o   |    Professionals
  21.                   -----|   |   |---------------------
  22.                        |___|___|    MEMBER
  23.  
  24.  
  25. Introduction to Cmm and CEnvi
  26.  
  27.           Cmm (C minus minus) is 'C' for the rest of us.  CEnvi runs Cmm
  28.           programs in the DOS, Windows, OS/2, etc... environments.
  29.           Together, CEnvi and Cmm make the power and flexibility of the C
  30.           programming language part of every computer user's environment,
  31.           without the hardware, time, and programmer resources needed for
  32.           developing full-blown C programs.
  33.  
  34.           With CEnvi and Cmm, anyone can take control of their computer
  35.           environment.  C is not just for programming nerds anymore.  CEnvi
  36.           utilites, macros, batch files, and scripts can quickly be
  37.           created, shared, and modified among all computer users,
  38.           professional and amateur alike.
  39.  
  40.           CEnvi can be incorporated at a pace that is comfortable to you:
  41.           you may only want to use CEnvi code set up by a more experienced
  42.           user, you may want to enhance existing batch files with a line or
  43.           two of CEnvi code, or you may write complete utilities using
  44.           CEnvi.
  45.           
  46.           This readme is to designed to allow you to quickly evaluate CEnvi.
  47.           For each of the operating systems supported by CEnvi, there is a
  48.           compressed zip file. It includes the executables, sample utilities
  49.           written in Cmm code, and an installation script written in Cmm for
  50.           the appropriate version of CEnvi.  To install a CEnvi version,
  51.           read the appropriate Quick Start section.
  52.  
  53. What they said about CEnvi version 1.009
  54.  
  55.           "Every now and then a programming tool serves a particular need
  56.            better than anything else.  CEnvi, a shareware product from
  57.            Nombas, is such a tool. ...CEnvi has virtually replaced ReXX
  58.            and the DOS batch language in my office."
  59.                       Al Stevens, Dr.Dobb's, December '94
  60.  
  61.           "Concise documentation, an extensive code library, over 70
  62.            examples, and compact executable size make CEnvi a good choice
  63.            for writing small programs and Windows scripts." <four stars>
  64.                      Ziff-Davis Interactive
  65.  
  66.           "...if you are a C programmer, this product is really a dream
  67.            come true."
  68.                       Brian Proffit, OS/2 Magazine January '94
  69.  
  70. New Features in Version 2.0
  71.  
  72.           Release 2.0 is a major improvement over previous releases. Speed 
  73.           has improved dramatically. This is most noticable in the Windows 
  74.           version. The interface to the Windows API's has been simplified
  75.           by allowing direct access to structure members. Running CEnvi 
  76.           without any parameters now provides a command-line shell. In the
  77.           Windows version, the user has control over colors and font size. 
  78.           The ability to interpret Cmm scripts has been added. Windows
  79.           users can now subclass another programs windows. This allows for
  80.           complete control over other Windows applications.
  81.  
  82. -------------------------- Quick Start For DOS -----------------------------
  83.  
  84.           Create a directory to install CEnvi for DOS in (we recommend
  85.           CENVIDOS). UNZIP cenvidos.zip into the directory you created. CEnvi 
  86.           for DOS includes two executables. CEnvid.exe is a regular DOS
  87.           program. CEnvid32.exe is a 32 bit DOS version. It is useful if you
  88.           find that the regular DOS version of CEnvi is running out of
  89.           memory.
  90.           
  91.           The first time you run CEnvi for DOS, run the install.cmm 
  92.           installation script. The installation script does 2 things for you.
  93.           It creates a CMMPATH environment variable, adds the CEnvi for DOS
  94.           path to the DOS PATH.
  95.           
  96.           After CEnvi for DOS is installed, try the following sample
  97.           utilities. They best demonstrate the power of CEnvi for DOS.
  98.           Samples that end in .bat can be run as batch files. Samples that
  99.           end in .CMM require typing "cenvid sample.cmm" where sample is the 
  100.           name of the utility.
  101.  
  102.           NOTE: CEnvi for DOS can directly alter DOS environment variables.
  103.           For example, from the DOS command line enter the commands:
  104.              SET COUNT=100
  105.              CEnviD COUNT = COUNT + 2
  106.              SET
  107.           and you'll see that CEnvi has increased the COUNT environment
  108.           variable to 102.  Because CEnvi uses environment space, you
  109.           may sometimes see an error message such as:
  110.              "The environment is not big enough..."
  111.           To correct this problem, you can specify a larger environment
  112.           size with a command such as:
  113.              COMMAND.COM /E:2000
  114.           To make this change permanent, add the /E:XXXX parameter,
  115.           where XXXX is a new environment size, to the "SHELL="
  116.           line in CONFIG.SYS.
  117.           
  118.    DOS Quick-Start Sample Files
  119.  
  120.             *EnviAsks.bat: Many examples of user input using EnviAsk.bat
  121.                            and GetUKey.cmm
  122.             *EnvSort.bat:  Sort environment variables alphabetically
  123.             *FileFind.bat: Wildcard search for files on current drive or on
  124.                            all drives
  125.             *GetUKey.cmm:  Display a choice prompt and then set an
  126.                            environment variable based on user's selection
  127.             *KbdBuf.bat:   Alter the size of the keyboard buffer
  128.             *KeyState.bat: Get or set the state of the NumLock, CapsLock,
  129.                            or Insert keys
  130.             *Mouse.bat:    Demonstrate reading a mouse's position and state
  131.             *PathAdd.bat:  Add a directory to your PATH environment
  132.                            variable.
  133.             *PathDel.bat:  Remove a directory from your PATH environment
  134.                            variable
  135.             *RunTime.bat:  Rudimentary scheme for executing a command at a
  136.                            certain time of day.
  137.             *Sound.bat:    Play a frequency for a given time period
  138.             *WinClip.cmm:  Utility to access Windows clipboard from DOS
  139.  
  140.           
  141. ------------------------- Quick Start For Windows --------------------------
  142.  
  143.           Create a directory to install CEnvi for Windows in (we recommend
  144.           CENVIWIN). UNZIP cenviwin.zip into the directory you created. CEnvi 
  145.           for Windows includes two executables. CEnviw.exe is a Windows
  146.           program that is both a Cmm interpreter and a Windows Command line
  147.           and servewin.com allows windows to control DOS sessions.
  148.                     
  149.           When you run CEnvi for Windows from program manager, it will provide 
  150.           a command-line interface (complete with shell commands you expect,
  151.           such as DIR, MKDIR, etc., and ability to call any program from the
  152.           shell or START executables). Type install, and the installation
  153.           script will set up CEnvi for Windows Properly. It will create a
  154.           CEnvi program group containing CEnvi for Windows, and a few sample
  155.           Cmm utilities.
  156.           
  157.           After CEnvi for Windows is installed, try the following sample
  158.           utilities. They best demonstrate the power of CEnvi for Windows.
  159.           All of these utilities can be run directly from the CEnvi for
  160.           Windows command line prompt. Some are shown as icons in the CEnvi
  161.           program group, double click to run them. All these samples may be
  162.           viewed using a standard text editor such as notepad.
  163.           
  164.    Windows Quick-Start Sample Files
  165.  
  166.             *BmpView.cmm:  Demonstrate the BMP.LIB routines by reading any
  167.                            number of .BMP files and displaying them.
  168.                            To run this program, type bmpview at the CEnvi 
  169.                            shell prompt.
  170.             *Dropper.cmm:  Perform command for all files Drag-&-Dropped to
  171.                            this tool.
  172.             *ExitWin.cmm:  Exit Windows; options to save files, force
  173.                            applications to quit, restart Windows, and
  174.                            reboot computer. To run this program, type exitwin
  175.                            at the CEnvi shell prompt.
  176.             *InputBox.cmm: Demonstrate uses of the InputBox() routine in
  177.                            InputBox.lib. To run this program, type inputbox
  178.                            at the CEnvi shell prompt.
  179.             *KeyGhost.cmm: Demonstrate how to use KeyPush.lib to control
  180.                            other applications. To run this program, type 
  181.                            keyghost at the CEnvi shell prompt.
  182.             *MenuNot.cmm:  Disable or delete a menu item. To run this program,
  183.                            type menunot at the CEnvi shell prompt.
  184.             *MsgBoxes.cmm: Show various message box types using the
  185.                            function in MsgBox.lib. To run this program, type
  186.                            msgboxes at the CEnvi shell prompt.
  187.             *Pm_exits.cmm: Adds Restart Windows and Reboot to Program manager.
  188.                            Meant to display adding menu selections to other 
  189.                            applications. To run this program, type pm_exits
  190.                            at the CEnvi shell prompt. To add this utility all
  191.                            the time, add an item to the startup group and set
  192.                            its command line to "CENVIW pm_exits.cmm".
  193.             *PMButt.cmm:   Replace Program Manager with a tiny button in
  194.                            upper-left corner for access to all PM items. To
  195.                            run this program, type pmbutt at the CEnvi
  196.                            shell prompt.
  197.             *PongTime.cmm: Bounce the Windows clock mini-app around. To run 
  198.                            this program, type pongtime at the CEnvi shell
  199.                            prompt.
  200.             *WinTools.cmm: Demonstrate many of the capabilities of
  201.                            WinTools.lib. To run this program, type wintools
  202.                            at the CEnvi shell prompt.
  203.  
  204.           
  205. ----------------------- Quick Start For OS/2 -------------------------------
  206.  
  207.           Create a directory to install CEnvi for OS/2 in (we recommend
  208.           CENVIOS2). UNZIP cenviOS2.zip into the directory you created. CEnvi 
  209.           for OS/2 includes two executables. CEnvi2.exe is a OS/2 program.
  210.           CEnvi2PM.exe is used by CEnvi2.exe to make presentation manager
  211.           calls. It must be in the current directory or in the search 
  212.           path for many of the Os/2 samples to work correctly.
  213.                     
  214.           The first time you run CEnvi for OS/2, run "install.cmm" from the Cmm
  215.           installation script. The installation script will set up CEnvi for
  216.           OS/2 Properly.
  217.                     
  218.           After CEnvi for OS/2 is installed, try the following sample
  219.           utilities. They best demonstrate the power of CEnvi for OS/2.
  220.           
  221.    OS/2 Quick-Start Sample Files
  222.  
  223.             *Bouncy.cmd:   Start a bouncy OS/2 Command Window. This
  224.                            demonstrates moving windows and silliness.
  225.             *ClipBrd.cmd:  Get or modify clipboard text
  226.             *DoFiles.cmd:  Perform any command on a list of files selected
  227.                            from a file dialog box
  228.             *DoMenu.cmd:   Execute any menu selection of a PM application,
  229.                            based on the name of the window and the menu text
  230.             *DOS.cmd:      Perform DOS command from an OS/2 session, with the
  231.                            option to "see" output of the command; mirrors 
  232.                            OS2.BAT
  233.             *KeyGhost.cmd: Sample for using KeyPush.lib to determine if
  234.                            CEnvi is worth the price of registration.
  235.             *MsgBoxes.cmd: Show various message box types using the
  236.                            function in MsgBox.lib.
  237.             *NumLock.cmd:  Turn on NUMLOCK key once, or maintain NUMLOCK ON.
  238.                            A shadow of NumLock.cmd can be put in startup
  239.                            folder to default computer to NumLock ON. 
  240.                            "NumLock 1000" will check every second to make
  241.                            sure that NUMLOCK is still set.
  242.             *ObjSet.cmd:   Alter WPS object and folder settings.  Run
  243.                            OBJSET MANUAL for complete description.
  244.             *OnTop.cmd:    Float window to top of all other windows
  245.             *OS2.bat:      Perform OS/2 command from a DOS session, with the
  246.                            option to "see" output of the command; mirrors 
  247.                            DOS.CMD.  Note that this requires CEnvi for DOS
  248.             *Session.cmd:  Replace OS/2's START command for greater control
  249.                            of starting sessions, including name, position,
  250.                            font, notebook settings, etc...
  251.             *Sessions.cmd: batch file to demonstrate various uses of
  252.                            Session.cmd
  253.             *ShutDown.cmd: Automated shutdown or reboot of OS/2 system,
  254.                            including options to save desktop settings or
  255.                            force shutdown/reboot with other programs running.
  256.             *TextWin.cmd:  GET/PUT text from/to a windowed DOS or OS/2
  257.                            session
  258.             *WinSet.cmd:   Set the position, size, state, etc... of a PM
  259.                            Window
  260.             *WinTools.cmd: Demonstrate many of the capabilities of
  261.                            WinTools.lib.  This is a fun one!
  262.           
  263.  
  264. --------------------- Quick Start For Windows/NT --------------------------
  265.  
  266. Coming soon to a theater near you (i.e., Currently in testing). For now,
  267. most of CEnvi for Windows will work properly for NT users.
  268.  
  269.  
  270. ---------------- Quick Start For OS/2 Presentation Manager ----------------
  271.  
  272. Currently in testing.
  273.  
  274.  
  275. ----------------------------- FILE LIST -----------------------------------
  276.  
  277. The CEnvi Unregistered Shareware package includes all the files
  278. in the following lists.  You are not permitted to upload or otherwise transfer
  279. copies of any unregistered version of CEnvi that do not include all of the
  280. files in these lists. If you want to upload a CEnvi sharware version to a
  281. BBS, you may consider calling the Nombas BBS to download the latest shareware
  282. zip files.
  283.  
  284. --------------- CENVIW.zip Contains the following files -------------------
  285.  
  286. CENVIW.EXE:   CEnvi shareware executable for Windows
  287. SERVEWIN.COM: Allows CEnvi for Windows to control DOS Boxes
  288. CENVI.DOC:    CEnvi Shareware Manual, Chapter 1: CEnvi Unregistered Shareware
  289. CMMTUTOR.DOC: CEnvi Shareware Manual, Chapter 2: Cmm Language Tutorial
  290. CMM_VS_C.DOC: CEnvi Shareware Manual, Chapter 3: Cmm versus C, for C
  291.               Programmers
  292. CENVILIB.DOC: CEnvi Shareware Manual, Chapter 4: Function Library
  293. LICENSE.DOC:  CEnvi Unregistered Shareware License Agreement
  294. README.DOC:   Introductory file. Read this first for quick intallation.
  295. REGISTER.DOC: CEnvi registration form
  296. INSTALL.CMM:  Cmm source file for installing this shareware version
  297.  
  298. *.CMM, *.CMD, *.BAT, *.LIB: Many sample programs using CEnvi for Windows.
  299.   See CENVI.DOC for a complete list.
  300.  
  301. ----------------- CENVID.zip Contains the following files -----------------
  302.  
  303. CENVID.EXE:   CEnvi shareware executable for DOS
  304. CENVID32.EXE: CEnvi shareware 32 Bit executable for DOS
  305. CMMTUTOR.DOC: CEnvi Shareware Manual, Chapter 2: Cmm Language Tutorial
  306. CMM_VS_C.DOC: CEnvi Shareware Manual, Chapter 3: Cmm versus C, for C
  307.               Programmers
  308. CENVILIB.DOC: CEnvi Shareware Manual, Chapter 4: Function Library
  309. LICENSE.DOC:  CEnvi Unregistered Shareware License Agreement
  310. README.DOC:   Introductory file. Read this first for quick intallation.
  311. REGISTER.DOC: CEnvi registration form
  312. INSTALL.CMM:  Cmm source file for installing this shareware version
  313.  
  314. *.CMM, *.CMD, *.BAT, *.LIB: Many sample programs using CEnvi for DOS.
  315.   See CENVI.DOC for a complete list.
  316.  
  317.  
  318. ------------------CENVI2.zip Contains the following files -----------------
  319.  
  320. CENVI2.EXE:   CEnvi shareware executable for OS/2
  321. CENVI2PM.EXE: Gateway program, executed transparently by CEnvi, for access
  322.               to PM-dependent system calls (OS/2 version only).
  323. CENVI.DOC:    CEnvi Shareware Manual, Chapter 1: CEnvi Unregistered Shareware
  324. CMMTUTOR.DOC: CEnvi Shareware Manual, Chapter 2: Cmm Language Tutorial
  325. CMM_VS_C.DOC: CEnvi Shareware Manual, Chapter 3: Cmm versus C, for C
  326.               Programmers
  327. CENVILIB.DOC: CEnvi Shareware Manual, Chapter 4: Function Library
  328. LICENSE.DOC:  CEnvi Unregistered Shareware License Agreement
  329. README.DOC:   Introductory file. Read this first for quick intallation.
  330. REGISTER.DOC: CEnvi registration form
  331. INSTALL.CMM:  Cmm source file for installing this shareware version
  332.  
  333. *.CMM, *.CMD, *.BAT, *.LIB: Many sample programs using CEnvi for OS/2.
  334.   See CENVI.DOC for a complete list.
  335.  
  336. -------------------------- REGISTRATION --------------------------------
  337.  
  338. This is a shareware release  Please register.  As a registered CEnvi user
  339. you will receive the following benefits:
  340.  
  341. *The latest version of CEnvi for all supported platforms (currently DOS,
  342.   OS/2, NT, and Windows).
  343.   
  344. *The CEnvi user's manual, over 100 pages, including a description of the
  345.   Cmm programming language and a tutorial for those who have never programmed,
  346.   and descriptions and examples of the over 150 functions included in the
  347.   CEnvi library).
  348.   
  349. *Free incremental electronic downloads for new versions of CEnvi for all
  350.   supported operating systems.
  351.   
  352. *Unlimited support from Nombas and CEnvi/Cmm users through CompuServe
  353.   (72212,1622), internet bsn@world.std.com), the cenvi-cmm e-mail mailing
  354.   list (cenvi-cmm@world.std.com), phone (617-391-6595), the Nombas BBS
  355.   (617-391-3718), or Compuserve in IBMSYS forum 3.
  356.   
  357. *Access to the growing list of CEnvi utilities and libraries (some of which
  358.   are included in this unregistered shareware package, and others are
  359.   contributed by Nombas and CEnvi/Cmm users to the electronic locations
  360.   described above). Available on the Nombas BBS, from internet via
  361.   anonymous ftp at ftp.std.com in the /vendors/CEnvi-Cmm directory, or in
  362.   CompuServe in IBMSYS library 3 (search on CEnvi, Cmm, CENV, & CNV).
  363.  
  364. There are three ways to register CEnvi version 2.00: 
  365.  
  366. ************************************************************************
  367. ********* REGISTRATION METHOD 1: CENVI MAIL-IN REGISTRATION FORM **********
  368. ************************************************************************
  369. Please fill out and mail this form, along with payment.
  370.  
  371. Where did you get CEnvi? ___________________________________________
  372.  
  373. Name: ______________________________________________________________
  374.  
  375. Company: ___________________________ Position: _____________________
  376.  
  377. Address: ___________________________________________________________
  378.  
  379. ____________________________________________________________________
  380.  
  381. ____________________________________________________________________
  382.  
  383. Country: ______________________   (add ZIP code if applicable)
  384.  
  385. Phone: ________________________  EMail: ______________________________
  386.  
  387.  
  388. CEnvi Registered License Manual ... Quantity   _____ x $45.00 = $ _________
  389. License fee for additional CEnvi users at your
  390. Organization (does not include additional manual
  391. or diskettes)... Additional simultaneous users _____ x $15.00 = $ _________
  392.  
  393. Additional CEnvi Manuals ......... Quantity    _____ x $10.00 = $ _________
  394.  
  395. Shipping outside USA, Canada, or Mexico  $4.00 ................ $ _________
  396.  
  397.                                                        Subtotal $ _________
  398.                              ose who have never programmed,
  399.   and descriptions and examples of the over 150 functions included in the
  400.   CEnvi library).
  401.   
  402. *Free incremental electronic downloads for new versions of CEnvi for all
  403.   supported operating systems.
  404.   
  405. *Unlimited support from Nombas and CEnvi/Cmm users through CompuServe
  406.   (72212,1622), internet bsn@world.std.com), the cenvi-cmm e-mail mailing
  407.   list (cenvi-cmm@world.std.com), phone (617-391-6595), the Nombas BBS
  408.   (617-391-3718), or Compuserve in IBMSYS forum 3.
  409.   
  410. *Access to the growing list of CEnvi utilities and libraries (some of which
  411.   are included in this unregistered shareware package, and others are
  412.   contributed by Nombas and CEnvi/Cmm users to the electronic locations
  413.   described above). Available on the Nombas BBS, from internet via
  414.   anonymous ftp at ftp.std.com in the /vendors/CEnvi-Cmm directory, or in
  415.   CompuServe in IBMSYS library 3 (search on CEnvi, Cmm, CENV, & CNV).
  416.  
  417. There are three ways to register CEnvi version 2.00: 
  418.  
  419. ************************************************************************
  420. ********* REGISTRATION METHOD 1: CENVI MAIL-IN REGISTRATION FORM **********
  421. ************************************************************************
  422. Please fill out and mail this form, along with payment.
  423.  
  424. Where did you get CEnvi? ___________________________________________
  425.  
  426. Name: ______________________________________________________________
  427.  
  428. Company: ___________________________ Position: _____________________
  429.  
  430. Address: ___________________________________________________________
  431.  
  432. ____________________________________________________________________
  433.  
  434. ____________________________________________________________________
  435.  
  436. Country: ______________________   (add ZIP code if applicable)
  437.  
  438. Phone: ________________________  EMail: ______________________________
  439.  
  440.  
  441. CEnvi Registered License Manual ... Quantity   _____ x $45.00 = $ _________
  442. License fee for additional CEnvi users at your
  443. Organization (does not include additional manual
  444. or diskettes)... Additional simultaneous users _____ x $15.00 = $ _________
  445.  
  446. Additional CEnvi Manuals ......... Quantity    _____ x $10.00 = $ _________
  447.  
  448. Shipping outside USA, Canada, or Mexico  $4.00 ................ $ _________
  449.  
  450.                                                        Subtotal $ _________
  451.                                                     
  452. Massachusetts residents please add 5% sales tax ............... $ _________
  453.  
  454. Check handling fee IF CHECK NOT DRAWN ON A U.S. BANK . $30.00 = $ _________
  455.  
  456.                                                           Total $ _________
  457.  
  458. Include a check or money order for this total, IN U.S. FUNDS AND DRAWN ON A
  459. U.S. BANK (if not drawn on a U.S. bank then add the $30 handling fee),
  460. payable to Nombas, or supply the following credit card payment information.
  461. Credit cards orders will be processed through a distributor: Custom
  462. Computer Systems of Medford MA.
  463.  
  464. Credit card orders (circle one): MasterCard / Visa / American Express
  465.  
  466.                                  Discover / Carte Blanche / Diners Club
  467.  
  468.     Card Number _____________________________________  Expires ____________
  469.  
  470.     Exact name on card (print) ____________________________________________
  471.  
  472.     Signature (REQUIRED) __________________________________________________
  473.  
  474. Mail this form, along with payment or credit information, to:
  475.                Nombas
  476.                64 Salem Street
  477.                MEDFORD MA 02155-0007   USA
  478.  
  479.  
  480. ***************************************************************************
  481. ******** REGISTRATION METHOD 2: COMPUSERVE ELECTRONIC REGISTRATION ********
  482. ***************************************************************************
  483. CompuServe members may register directly through the CompuServe
  484. Registration Service.  To use this service enter GO SWREG at your CI$
  485. prompt.  Registration ID is 1354 for CEnvi for DOS, 1355 for CEnvi for
  486. OS/2, and 1356 for CEnvi for Windows (you only need to register ONE
  487. version).  Nombas will immediately be informed of your registration, and
  488. the CEnvi registration fee will automatically be added to your CompuServe
  489. bill.
  490.  
  491.  
  492. ***************************************************************************
  493. ************ REGISTRATION METHOD 3: Public (software) Library *************
  494. ***************************************************************************
  495. CREDIT CARD ORDERS ONLY -
  496.  
  497. You can order with MC, Visa, Amex, or Discover from Public (software)
  498. Library by calling 800-2424-PsL or 713-524-6394 or by FAX to 713-524-6398
  499. or by CIS EMail to 71355,470. You can also mail credit card orders to PsL
  500. at P.O.Box 35705, Houston, TX 77235-5705.
  501.  
  502. THE ABOVE NUMBERS ARE FOR ORDERS ONLY.
  503.  
  504. Any questions about the status of the shipment of the order, refunds,
  505. registration options, product details, technical support, volume discounts,
  506. dealer pricing, site licenses, etc., must be directed to Nombas (see phone
  507. number and addresses below).
  508.  
  509. To insure that you get the latest version, PsL will notify Nombas the day
  510. of your order and we will ship the product directly to you.
  511.  
  512. CEnvi (all versions) is PsL product #11069.  Prices (including shipping and
  513. handling) are: $49 US/Canada and $52 overseas.
  514.  
  515.  
  516. ***************************************************************************
  517. Thank you for trying this shareware copy of CEnvi.  Mail inquires and other
  518. correspondences to:
  519.      Nombas
  520.      64 Salem Street
  521.      Medford, MA  02155   USA
  522.  
  523. Nombas may also be contacted at:
  524.      Phone:      (617)391-6595
  525.      Internet:   bsn@world.std.com
  526.      CompuServe: 72212,1622
  527.      BBS:        (617)391-3718
  528.      Fax:        (617)391-3842
  529.  
  530.